type go.pact.im/x/zapjournal.varsEncoder

43 uses

	go.pact.im/x/zapjournal (current package)
		encoder.go#L39: type varsEncoder struct {
		encoder.go#L55: func (e *varsEncoder) beginSinglelineVar(name string) {
		encoder.go#L60: func (e *varsEncoder) beginMultilineVar(name string) {
		encoder.go#L68: func (e *varsEncoder) beginVar(name string, multiline bool) {
		encoder.go#L81: func (e *varsEncoder) endVar() {
		encoder.go#L90: func (e *varsEncoder) OpenNamespace(key string) {
		encoder.go#L94: func (e *varsEncoder) AddBinary(key string, value []byte) {
		encoder.go#L100: func (e *varsEncoder) AddByteString(key string, value []byte) {
		encoder.go#L107: func (e *varsEncoder) AddString(key, value string) {
		encoder.go#L114: func (e *varsEncoder) AddBool(key string, value bool) {
		encoder.go#L120: func (e *varsEncoder) AddComplex128(key string, value complex128) {
		encoder.go#L124: func (e *varsEncoder) AddComplex64(key string, value complex64) {
		encoder.go#L128: func (e *varsEncoder) addComplex(key string, value complex128, bitSize int) {
		encoder.go#L134: func (e *varsEncoder) AddDuration(key string, value time.Duration) {
		encoder.go#L138: func (e *varsEncoder) AddFloat64(key string, value float64) {
		encoder.go#L142: func (e *varsEncoder) AddFloat32(key string, value float32) {
		encoder.go#L146: func (e *varsEncoder) addFloat(key string, value float64, bitSize int) {
		encoder.go#L152: func (e *varsEncoder) AddInt(key string, value int) {
		encoder.go#L156: func (e *varsEncoder) AddInt64(key string, value int64) {
		encoder.go#L162: func (e *varsEncoder) AddInt32(key string, value int32) {
		encoder.go#L166: func (e *varsEncoder) AddInt16(key string, value int16) {
		encoder.go#L170: func (e *varsEncoder) AddInt8(key string, value int8) {
		encoder.go#L174: func (e *varsEncoder) AddUint(key string, value uint) {
		encoder.go#L178: func (e *varsEncoder) AddUint64(key string, value uint64) {
		encoder.go#L184: func (e *varsEncoder) AddUint32(key string, value uint32) {
		encoder.go#L188: func (e *varsEncoder) AddUint16(key string, value uint16) {
		encoder.go#L192: func (e *varsEncoder) AddUint8(key string, value uint8) {
		encoder.go#L196: func (e *varsEncoder) AddUintptr(key string, value uintptr) {
		encoder.go#L202: func (e *varsEncoder) AddTime(key string, value time.Time) {
		encoder.go#L208: func (e *varsEncoder) AddReflected(key string, value any) error {
		encoder.go#L222: func (e *varsEncoder) AddArray(key string, marshaler zapcore.ArrayMarshaler) error {
		encoder.go#L232: func (e *varsEncoder) AddObject(key string, marshaler zapcore.ObjectMarshaler) error {
		encoder.go#L242: func (e *varsEncoder) encodeEntryVars(ent zapcore.Entry) {
		encoder.go#L298: func (e *varsEncoder) encodeEntry(ent zapcore.Entry, fields []zapcore.Field) *varsEncoder {
		pool.go#L16: 		e := &varsEncoder{
		pool.go#L26: func getVarsEncoder(prefix string) *varsEncoder {
		pool.go#L27: 	e := varsEncoderPool.Get().(*varsEncoder)
		pool.go#L33: func putVarsEncoder(e *varsEncoder) {
		pool.go#L45: func cloneVarsEncoder(e *varsEncoder) *varsEncoder {
		pool.go#L51: 		return &varsEncoder{
		zapjournal_linux.go#L45: 	enc  *varsEncoder